home *** CD-ROM | disk | FTP | other *** search
- #WP0 5 5 7 7.5 15 8
- /*
- * The line above is read by the page layout code to
- * determine the basic column layout. The items are, in order:
- * - WebPrint version code.
- * - Left hand margin to start of web page data.
- * - Gap to leave between columns.
- * - Right hand margin.
- * - Top of column margin to the start of the web page data.
- * - Vertical gap to leave between columns.
- * - Bottom of column margin.
- * All distances are in mm and may be floating point. Margin measurements
- * are made from the edge of the printable area as declared by the printer
- * driver. Of course it may lie. The functions given in this file add
- * decoration to the column fragments and the page as a whole within
- * the margins and gap areas. That is, they do not generally overwrite
- * the web page data itself, although they may.
- */
-
- /*
- * And here are the same numbers so they can be used within the
- * script. (top, bottom, left, right margin, vertial, horixontal gap).
- */
- static lm = 5;
- static hg = 5;
- static rm = 7;
- static tm = 7.5;
- static vg = 15;
- static bm = 8;
-
- /*
- * WP_decorate_page
- *
- * Add decoration to the given gob. The gob is the whole page as set
- * out so far.
- */
- static
- WP_decorate_page(pg, xmin, ymin, xmax, ymax, pg_num, no_background)
- {
- auto fw = 5.0; /* The width the of fade round the edge. */
- auto fh = 4.0; /* The font size. */
- auto info;
- auto bg;
- auto icon;
- auto pg_str;
- auto pg_width;
-
- gc_save();
-
- gc_default();
-
- if (!no_background)
- {
- bg = image(dir + "bgtile.bmp");
- info = image_info(bg);
- if (info.width_mm > 100)
- info.width_mm = 100;
- if (info.height_mm > 100)
- info.height_mm = 100;
- new_tile(info.width_mm, info.height_mm);
- bg = render_tile(bg);
- gc_color(bg, 0, 0);
- rect(xmin, ymin, xmax - xmin, ymax - ymin);
- bg = draw(path());
-
- /*
- * And stroke its edge.
- */
- gc_save();
- rect(xmin, ymin, xmax - xmin, ymax - ymin);
- rect(xmin + .25, ymin + .25, xmax - xmin - 2 * .25, ymax - ymin - 2 * .25);
- gc_draw_style("odd_even");
- gc_color(.3, .3, .3);
- gc_opacity(1);
- bg = path() over bg;
- gc_restore();
-
- pg = pg over bg;
- }
-
- /*
- * Place the page number icon with the page number in it over everything
- * in the bottom right corner.
- */
- gc_opacity(1);
- gc_color(.3, .3, .3);
- gc_font(SansSerifBold, fh);
- save_matrix();
- translate(xmax - 11, ymin);
- scale(.5);
- icon = draw(image(dir + "pageicon.tif"));
- scale(2);
- move(2.75, 2.0);
- if ((pg_width = WP_text_width(pg_str = string(pg_num))) > 5.0)
- gc_font_scale(5.0 / pg_width, 1.0);
- icon = draw(text("\t" + pg_str, NULL, "0C")) atop icon;
- pg := icon;
- restore_matrix();
-
- gc_opacity(1);
- gc_color(1.0, 1.0, 1.0);
- pg = pg over page_fill();
-
- gc_restore();
-
- return pg;
- }
-
- static
- WP_decorate_column(pg, xmin, ymin, xmax, ymax, title, url)
- {
- auto sz = 4.0; /* Shadow size in mm. */
- auto sw = 0.15; /* Frame stroke width in mm. */
- auto hh = 4.0; /* The height of the header block. */
- auto fh = 3.0; /* The font size. */
- auto bw = 1; /* Width of the bevel along the edge. */
- auto t;
-
- gc_save();
-
- gc_default();
-
- pg = WP_bevel(pg, xmin, ymin, xmax, ymax, 1, 0);
-
- /*
- * Place a label box on top with the title in white.
- * Then modify our ymax to reflect the taller box.
- */
- gc_opacity(1);
- gc_color(1.0, 1.0, 1.0);
- move(xmin + 1.0, ymax + hh * 0.25);
- gc_font(SansSerifBoldItalic, fh);
- t = WP_text(xmax - xmin - 2, title);
- gc_color(0.3, 0.3, 0.3);
- rect(xmin, ymax, xmax - xmin, hh);
- pg = (t atop path()) over pg;
- ymax += hh;
-
- /*
- * Place a label box at the bottom with the url in it.
- * Then modify our ymin to reflect the taller box.
- */
- hh *= 0.666;
- fh *= 0.666;
- gc_opacity(1);
- gc_color(0.3, 0.3, 0.3);
- move(xmin + 1.0, ymin - hh * 0.75);
- gc_font(SansSerifBold, fh);
- t = WP_text(xmax - xmin - 2, url);
- gc_color(1.0, 1.0, 1.0);
- rect(xmin, ymin - hh, xmax - xmin, hh);
- pg = (t atop path()) over pg;
- ymin -= hh;
-
- /*
- * Draw an edge blend drop shadow and put it under the column
- * fragment.
- */
- move(xmin + 2 * sz, ymin);
- line(xmax, ymin);
- line(xmax, ymax - 2 * sz);
- move(xmin + sz, ymin);
- rline(0, -sz);
- rline(xmax - xmin, 0);
- rline(0, ymax - ymin);
- rline(-sz, 0);
- gc_color(0, 0, 0);
- gc_opacity(0.5, 0);
- pg = pg over path();
- gc_opacity(1.0);
-
- /*
- * Put a black frame just outside the updated area.
- */
- gc_color(0, 0, 0);
- rect(xmin, ymin, xmax - xmin, ymax - ymin);
- rect(xmin - sw, ymin - sw, xmax - xmin + 2 * sw, ymax - ymin + 2 * sw);
- gc_draw_style("odd_even");
- pg = path() over pg;
-
- gc_restore();
-
- return pg;
- }
-
- static
- WP_bevel(pg, xmin, ymin, xmax, ymax, bw, sunken)
- {
- /*
- * Bevel the edges. First the left hand side.
- */
- gc_save();
- move(xmin, ymin);
- rline(bw, bw);
- rline(0, ymax - ymin - 2 * bw);
- rline(-bw, bw);
- close_edge();
- gc_opacity(.5, xmin,ymax, 0.6, xmin,ymin);
- if (sunken)
- {
- gc_opacity(0.6, xmin,ymax, 0.3, xmin,ymin);
- gc_color(0.3,0.3,0.3, xmin,ymax, 0,0,0, xmin,ymin);
- }
- else
- {
- gc_color(1,1,1, xmin,ymax, .6,.6,.6, xmin,ymin);
- }
- pg = path() over pg;
-
- /*
- * The top.
- */
- move(xmin, ymax);
- rline(bw, -bw);
- rline(xmax - xmin - 2 * bw, 0);
- rline(bw, bw);
- close_edge();
- gc_opacity(0.6);
- if (sunken)
- gc_color(0.4,0.4,0.4, xmin,ymax, 0,0,0, xmax,ymax);
- else
- gc_color(0.6,0.6,0.6, xmin,ymax, 1,1,1, xmax,ymax);
- pg = path() over pg;
-
- /*
- * The bottom.
- */
- move(xmin, ymin);
- rline(bw, bw);
- rline(xmax - xmin - 2 * bw, 0);
- rline(bw, -bw);
- close_edge();
- gc_opacity(0.6);
- if (sunken)
- gc_color(1,1,1, xmax,ymin, 0.6,0.6,0.6, xmin,ymin);
- else
- gc_color(0,0,0, xmax,ymin, 0.4,0.4,0.4, xmin,ymin);
- pg = path() over pg;
-
- /*
- * The right hand side.
- */
- move(xmax, ymin);
- rline(-bw, bw);
- rline(0, ymax - ymin - 2 * bw);
- rline(bw, bw);
- close_edge();
- gc_opacity(0.3, xmax,ymin, 0.6, xmax,ymax);
- if (sunken)
- {
- gc_color(0.6,0.6,0.6, xmax,ymin, .8,.8,.8, xmax,ymax);
- }
- else
- {
- gc_opacity(0.3, xmax,ymin, 0.6, xmax,ymax);
- gc_color(0,0,0, xmax,ymin, 0.4,0.4,0.4, xmax,ymax);
- }
- pg = path() over pg;
- gc_restore();
- return pg;
- }
-
- static
- WP_text_width()
- {
- /*
- * Parameters not assigned to formal parameters are formed
- * into an array and assigned to the auto variable vargs...
- */
- auto vargs;
- auto x, y;
- auto nx, ny;
-
- current_point(&x, &y);
- call(text, vargs);
- current_point(&nx, &ny);
- move(x, y);
- return nx - x;
- }
-
- static
- WP_trim_text(avail_width)
- {
- /*
- * Parameters not assigned to formal parameters are formed
- * into an array and assigned to the auto variable vargs...
- */
- auto vargs;
- auto full_text;
- auto trimed_text;
- auto ellipses = "\342\200\246"; /* ... in UTF8 Unicode. */
- auto nchars;
-
- full_text = vargs[0];
- if (call(WP_text_width, vargs) < avail_width)
- return full_text;
- avail_width -= WP_text_width(ellipses);
- nchars = nels(full_text);
- while
- (
- nels(trimed_text = interval(full_text, 0, nchars)) != 0
- &&
- (
- vargs[0] = trimed_text,
- call(WP_text_width, vargs) > avail_width
- )
- )
- {
- --nchars;
- /*
- * The text we're trimming is UTF-8 encoded. If it's a multi-byte
- * character, move back past the start of the character.
- */
- if (full_text[nchars - 1] >= "\200")
- {
- while (full_text[nchars - 1] < "\300")
- --nchars;
- --nchars;
- }
- }
- return trimed_text + ellipses;
- }
-
- /*
- * WP_text
- *
- * Set text within a limited horizontal width. Condenses the text up to 50%
- * if it is too long, then clips it. Returns a gob (not a text object). Leaves
- * current point end of text.
- *
- * Parameters:
- * avail_width The width within which the text must fit, in user space.
- * ... Further parameters as required for the text() function.
- */
- static
- WP_text()
- {
- /*
- * Parameters not assigned to any formal parameters are formed
- * into an array and assigned to the auto variable vargs...
- */
- auto vargs;
- auto actual_width;
- auto x, y;
- auto xx, yy;
- auto condense;
- auto t;
- auto e;
-
- vargs[1] = call(WP_trim_text, vargs);
- return draw(call(text, interval(vargs, 1)));
-
- gc_save();
- current_point(&x, &y);
- call(text, vargs);
- current_point(&actual_width, &y);
- actual_width -= x;
- move(x, y);
- if (actual_width > avail_width)
- {
- /*
- condense = avail_width / actual_width;
- if (condense < .5)
- condense = .5;
- gc_font_scale(condense, 1.0);
- */
-
- actual_width = avail_width;
- move(x + avail_width, y);
- e = draw(text("\t\342\200\246", NULL, "0R")); /* Ellipses */
- move(0, 0);
- text("\342\200\246"); /* Ellipses */
- current_point(&xx, &yy);
- avail_width -= xx;
-
- move(x, y);
- t = draw(call(text, vargs));
- rect(x - 1, y - 10000, avail_width + 1, 20000);
- gc_default();
- t = e over (t in draw(path()));
- }
- else
- {
- t = draw(call(text, vargs));
- }
- gc_restore();
- move(x + actual_width, y);
- return t;
- }
-
- static
- T(x, y, str)
- {
- auto vargs;
- auto t;
- auto i;
-
- y /= 10.0;
- move(x / 10.0, y);
- t = text(str, NULL, NULL, 1);
- if (vargs != NULL)
- {
- for (i = 0; i < nels(vargs); ++i)
- {
- move(vargs[i] / 10.0, y);
- ++i;
- t += text(vargs[i], NULL, NULL, 1);
- }
- }
- return draw(t);
- }
-
-